- 
          
 - 
                Notifications
    
You must be signed in to change notification settings  - Fork 33.7k
 
v17.0.1 release proposal #40535
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Merged
      
      
    
                
     Merged
            
            v17.0.1 release proposal #40535
Conversation
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
    Fixes: nodejs/Release#704 PR-URL: #40526 Fixes: #40529 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
Fixes: #40191 PR-URL: #40193 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: James M Snell <[email protected]>
This missing initialization was reported by the coverity scans we are in the process of re-enabling. Signed-off-by: Michael Dawson <[email protected]> PR-URL: #40379 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Darshan Sen <[email protected]>
Split test-crypto-dh.js so that it is less likely to timeout on less powerful bots. PR-URL: #40451 Refs: nodejs/reliability#86 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Fixes: #40497 PR-URL: #40499 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
The `maxFreeSockets` option specifies the maximum number of free sockets per host. PR-URL: #40483 Fixes: #40446 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
Coverity scan reported a free after use and I think its right. Tweak to avoid double free. Signed-off-by: Michael Dawson <[email protected]> PR-URL: #40380 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Darshan Sen <[email protected]>
PR-URL: #40403 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Zijian Liu <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
PR-URL: #40403 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Zijian Liu <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
Notable changes: Fixed distribution for native addon builds This release fixes an issue introduced in Node.js v17.0.0, where some V8 headers were missing from the distributed tarball, making it impossible to build native addons. These headers are now included. #40526 Fixed stream issues * Fixed a regression in `stream.promises.pipeline`, which was introduced in version 16.10.0, is fixed. It is now possible again to pass an array of streams to the function. #40193 * Fixed a bug in `stream.Duplex.from`, which didn't work properly when an async generator function was passed to it. #40499 PR-URL: #40535
              
                    cjihrig
  
              
              approved these changes
              
                  
                    Oct 20, 2021 
                  
              
              
            
            
              
                    richardlau
  
              
              approved these changes
              
                  
                    Oct 20, 2021 
                  
              
              
            
            
              
                    tniessen
  
              
              approved these changes
              
                  
                    Oct 20, 2021 
                  
              
              
            
            
| 
           Release build: https://ci-release.nodejs.org/job/iojs+release/8022/  | 
    
    
  targos 
      added a commit
      that referenced
      this pull request
    
      Oct 20, 2021 
    
    
      
  
    
      
    
  
Notable changes: Fixed distribution for native addon builds This release fixes an issue introduced in Node.js v17.0.0, where some V8 headers were missing from the distributed tarball, making it impossible to build native addons. These headers are now included. #40526 Fixed stream issues * Fixed a regression in `stream.promises.pipeline`, which was introduced in version 16.10.0, is fixed. It is now possible again to pass an array of streams to the function. #40193 * Fixed a bug in `stream.Duplex.from`, which didn't work properly when an async generator function was passed to it. #40499 PR-URL: #40535
    
  targos 
      added a commit
        to targos/nodejs.org
      that referenced
      this pull request
    
      Oct 20, 2021 
    
    
  
    
  targos 
      added a commit
        to nodejs/nodejs.org
      that referenced
      this pull request
    
      Oct 20, 2021 
    
    
  
  This was referenced Oct 21, 2021 
      
  This was referenced Oct 23, 2021 
      
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
      
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
2021-10-20, Version 17.0.1 (Current), @targos
Notable Changes
Fixed distribution for native addon builds
This release fixes an issue introduced in Node.js v17.0.0, where some V8 headers
were missing from the distributed tarball, making it impossible to build native
addons. These headers are now included. #40526
Fixed stream issues
stream.promises.pipeline, which was introduced in version16.10.0, is fixed. It is now possible again to pass an array of streams to the
function. #40193
stream.Duplex.from, which didn't work properly when an asyncgenerator function was passed to it. #40499
Commits
3f033556c3] - build: include missing V8 headers in distribution (Michaël Zasso) #40526adbd92ef1d] - crypto: avoid double free (Michael Dawson) #403808dce85aadc] - doc: format doc/api/*.md with markdown formatter (Rich Trott) #40403977016a72f] - doc: specify that maxFreeSockets is per host (Luigi Pinca) #40483f9f2442739] - src: add missing inialization in agent.h (Michael Dawson) #40379111f0bd9b6] - stream: fix fromAsyncGen (Robert Nagy) #40499b84f101049] - stream: support array of streams in promises pipeline (Mestery) #401933f7c503b69] - test: adjust CLI flags test to ignore blank lines in doc (Rich Trott) #404037c42d9fcc6] - test: split test-crypto-dh.js (Joyee Cheung) #40451